From 002afa04f9550fe418603b010151ec1bd8a370ad Mon Sep 17 00:00:00 2001 From: Jimi Xenidis Date: Thu, 28 Sep 2006 22:31:23 -0400 Subject: [PATCH] [XEN][POWERPC] Remove limit on the page frame table Dunno where the limit came from, but it is the reason we were asserting in the page allocator. Signed-off-by: Jimi Xenidis Signed-off-by: Hollis Blanchard --HG-- extra : transplant_source : .%21%9F%06%F9%A4%07%D12H%EAz8%93s%A20%28%C4%26 --- xen/arch/powerpc/mm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/xen/arch/powerpc/mm.c b/xen/arch/powerpc/mm.c index a71bb8c2f8..06341511da 100644 --- a/xen/arch/powerpc/mm.c +++ b/xen/arch/powerpc/mm.c @@ -164,8 +164,6 @@ void __init init_frametable(void) int i; nr_pages = PFN_UP(max_page * sizeof(struct page_info)); - nr_pages = min(nr_pages, (4UL << (20 - PAGE_SHIFT))); - p = alloc_boot_pages(nr_pages, 1); if (p == 0) -- 2.30.2